home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _D0BFCB053521426BBC717CC406F08A70 < prev    next >
Encoding:
Text File  |  2006-08-04  |  511 b   |  22 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Erich Tran',
  6.         'Copyright': u'',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_BarrelCorrection():
  13.     return {
  14.         'PreserveCentralScale': App.Constants.Boolean.false, 
  15.         'Strength': 40
  16.         }
  17.  
  18. def Do(Environment):
  19.     # Barrel Correction
  20.     App.Do( Environment, 'BarrelCorrection',         Preset_BarrelCorrection())
  21.  
  22.